home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
tuningtypes.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
832b
|
27 lines
/* RCSVER $Id: tuningtypes.sql,v 1.2 1999-02-24 16:20:49-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
*
* Name: tuningtypes.sql
* Date: 12/28/1998
* memo: Randy Wood
* Description: Create the tuningtypes table. This table contains
* categories to which each tuning parameter is assigned.
* Changes:
************************************************************************* */
/* TUNINGTYPES
1 Bill/Coin
2 Cashbox
3 OCU/Display
4 Security
5 System
6 Misc
*/
CREATE TABLE tuningtypes
(
type NUMBER(38), /* ID of this type */
name VARCHAR2(20), /* Name of category */
descr VARCHAR2(40), /* Description of category */
CONSTRAINT pk_tuningtypes PRIMARY KEY (type)
);